home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2003 August / MW 8 2003 CD1.iso / Inside Macworld / Product News / gimp-1.2.4.sit / gimp-1.2.4 / plug-ins / perl / perl-intl.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-11-05  |  306 b   |  18 lines

  1. #ifndef ENABLE_NLS
  2. # ifdef HAVE_LIBINTL_H
  3. #  define ENABLE_NLS
  4. # endif
  5. #endif
  6.  
  7. #ifdef ENABLE_NLS
  8. # include <libintl.h>
  9. #else
  10. # define gettext(s) (char *) (s)
  11. # define dgettext(d,s) (char *) (s)
  12. # define textdomain(d) (d)
  13. # define bindtextdomain(d,p) (p)
  14. #endif
  15.  
  16. #define __(s) gettext (s)
  17. #define N_(s) (s)
  18.